home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Headers / bsd / i386 / cpu.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-30  |  709 b   |  38 lines

  1. /*    @(#)cpu.h    1.0    11/09/86    (c) 1986 NeXT    */
  2.  
  3. /* 
  4.  * HISTORY
  5.  *
  6.  * 9 May 1992 David E. Bohman at NeXT
  7.  *    Cleaned up.
  8.  * 20 April 1992 David E. Bohman at NeXT
  9.  *    Created from 68k version.
  10.  * 09-Nov-86  John Seamons (jks) at NeXT
  11.  *    Ported to NeXT.
  12.  *
  13.  */ 
  14.  
  15. /*
  16.  * Copyright (c) 1982, 1986 Regents of the University of California.
  17.  * All rights reserved.  The Berkeley software License Agreement
  18.  * specifies the terms and conditions for redistribution.
  19.  *
  20.  *    @(#)cpu.h    7.1 (Berkeley) 6/5/86
  21.  */
  22. #ifndef    _CPU_
  23. #define    _CPU_
  24.  
  25. #ifdef    KERNEL_BUILD
  26. #import <cpus.h>
  27. #else    KERNEL_BUILD
  28. #import <mach/features.h>
  29. #endif    KERNEL_BUILD
  30.  
  31. #ifdef KERNEL
  32. int    master_cpu;
  33. #endif    KERNEL
  34.  
  35. #define    cpu_number()        (0)
  36.  
  37. #endif    _CPU_
  38.